home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 007 / pctecap.arc / ECHOBACK.PAS < prev    next >
Pascal/Delphi Source File  |  1986-03-15  |  256b  |  18 lines

  1. program echoback (output);
  2.  
  3. var
  4.  
  5. commandline : ads of lstring(127);
  6. CESXQQ [extern] : word;
  7. args : lstring(127);
  8.  
  9. begin
  10.  
  11.   commandline.S := CESXQQ;
  12.   commandline.R := #80;
  13.   args := commandline^;
  14.  
  15.   writeln (args);
  16.  
  17. end.
  18.